什么叫"非奇异方阵"

来源:百度知道 编辑:UC知道 时间:2024/05/23 18:04:31

你们都说错了。 这是又 俄罗斯科学家发明创造的.

一种 类似与魔方 的 一个 大房间,分很多小房间.

里边的摆设格局都一样,只是颜色不同而已.

非奇异矩阵的乘幂法----求最大特征值- -

#include
#include
#define M 3
#define N 3
#define W 0.000001
main( )

{
static float a[M][N],y[M], x[N];
int i,j,p;
static int k=0;
static float temp=0,t,t0;
t=0;t0=10;
printf("\nInput the element of the matrix:\n");
for(i=0;i { for(j=0;j scanf("%f",&a[i][j]);
}
printf("Input the initial value of Y:\n");
for(i=0;i {
scanf("%f",&y[i]);

}
printf("\nnow...... beging\n");
while( (fabs(t-t0)>W))
{

/*--------------mulit--------*/
printf("the value of v:\n");
for(i=0;i {
for(j=0;j {
temp+=a[i][j]*y[j];

}
x[i]=temp;
temp=0;
pri